home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / TextEdit / TextEditUser.cp < prev    next >
Text File  |  2000-06-23  |  375b  |  26 lines

  1. // TextEditUser.cp
  2.  
  3. #ifndef TextEditUser_h
  4. #include "TextEditUser.h"
  5. #endif
  6. #ifndef WindowManagerUser_h
  7. #include "WindowManagerUser.h"
  8. #endif
  9. #ifndef Integers_h
  10. #include "Integers.h"
  11. #endif
  12.  
  13. #include <TextEdit.h>
  14.  
  15. TextEditUser::TextEditUser()
  16.   {
  17.     static bool initialized = false;
  18.     
  19.     if ( !initialized )
  20.       {
  21.         WindowManagerUser();
  22.         TEInit();
  23.         initialized = true;
  24.       }
  25.   }
  26.